home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / database / postgres / appgen-0.2-a / appgen-0 / AppGEN / src / lib / about.c next >
Encoding:
C/C++ Source or Header  |  1996-07-10  |  645 b   |  19 lines

  1. #include <stdio.h>
  2.  
  3. void ag_about() 
  4. {
  5.     printf("Content-Type: text/html\n\n");
  6.     printf("<HTML>\n");
  7.     printf("<HEAD>\n");
  8.     printf("<TITLE>AppGEN Development System</TITLE>\n");
  9.     printf("</HEAD>\n");
  10.     printf("<BODY BGCOLOR=\"#ffffff\">");
  11.     printf("<H1><IMG SRC=\"/ag/appgen.gif\"> WWW Development System for Postgres95</H1>\n");
  12.     printf("<HR>\n");
  13.     printf("<B>Copyright (c) 1996, Andrew Whaley</B>\n");
  14.     printf("<BR><BR><BR>\n");
  15.     printf("This application was produced using AppGEN v0.2 internet application development \n");
  16.     printf("system. Please refer to the package documentation for further information. \n");
  17.     printf("</BODY></HTML>\n");
  18. }
  19.